home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-02-13 | 1.0 KB | 55 lines | [TEXT/MPS ] |
- //# Copyright: © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
-
- #ifndef _EXTENSN_
- #define _EXTENSN_
-
- #ifndef _REFCTOBJ_
- #include "RefCtObj.idl"
- #endif
-
- //==============================================================================
- // Classes defined in this interface
- //==============================================================================
-
- interface ODExtension;
-
- //==============================================================================
- // ODExtension
- //==============================================================================
-
- interface ODExtension : ODRefCntObject
- {
-
- void InitExtension(in ODObject base);
-
- ODObject GetBase();
-
- void BaseRemoved();
-
- ODBoolean IsValid();
-
- void CheckValid();
-
- #ifdef __SOMIDL__
- implementation
- {
- majorversion = 1; minorversion = 0;
-
- functionprefix = ODExtension;
-
- override:
- Release;
-
- releaseorder:
- InitExtension,
- GetBase,
- BaseRemoved,
- IsValid,
- CheckValid;
-
- };
- #endif
- };
-
- #endif // _EXTENSN_
-